#myCarousel {
	width: 100%;
	height: 340px;
       /*	background-image: url(../img/news-bg.png);*/
	position: relative;
}

.banner img {
	width: 100%;
	height: 340px;
	opacity: 0.6;
	filter: brightness(0.6);
}

.carousel-inner {
	width: 80%;
	position: absolute;
	top: 6%;
	left: 10%;
	height: 300px
}

.carousel-inner .students {
	position: relative;
	width: 100%;
}

#four_flash {
	position: relative;
	width: 100%;
	height: 330px;
	margin: 0 auto;
}

#four_flash .flashBg {
	width: 98%;
	height: 330px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

#four_flash .flashBg ul.mobile {
	width: 2000%;
	height: 330px;
	position: absolute;
	top: 15;
	left: 0;
}

#four_flash .flashBg ul.mobile li {
	border: 0.5px solid rgba(255, 255, 255, 0.2);
	float: left;
	width: 210px;
	height: 290px;
	margin-left: 26px;
	transition: all 1s ease 0s;
}
#four_flash .flashBg ul.mobile li:hover .right {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
 }
 
 #four_flash .flashBg ul.mobile li:hover .right img {
  opacity: 0.7;  
 }
#four_flash .flashBg ul.mobile li:hover {
	cursor: pointer;
	border: 0.5px solid rgba(255, 255, 255);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
#four_flash .flashBg ul.mobile li:hover p{
	opacity: 1;
	color: #fff;
}

.carousel-inner .thumbnail {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 30px auto;
	background-color: rgba(255, 255, 255, 0.3);
}

.carousel-inner .thumbnail img {
	width: 112px;
	height: 112px;
	margin-top: 0;
	opacity: 1;
	filter: brightness(1);
}

.carousel-inner .but_left {
	width: 16px;
	height: 20px;
	position: absolute;
	top: 136px;
	left: 0px;
}

.carousel-inner .but_right {
	width: 16px;
	height: 20px;
	position: absolute;
	top: 136px;
	right: 0px;
}

.carousel-inner .but_left img,
.carousel-inner .but_right img {
	opacity: 0.3;
}

.but_left img:hover {
	opacity: 1;
	cursor: pointer;
}

.carousel-inner .but_right img:hover {
	opacity: 1;
	cursor: pointer;
}

.caption .line {
	width: 86%;
	margin: 0 auto;
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
	padding-top: 12px;
}

#myCarousel .marketing {
	margin: 0 auto;
}

.carousel-inner .my-caption p {
	font-size: 12px;
	color: #F6F6F6;
	opacity: 0.6;
}

.container .caption p {
	width: 80%;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: center;
}

.carousel-inner .my-caption .right {
	width: 24px;
	height: 24px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin: 16px auto;
	text-align: center;
}

.carousel-inner .my-caption img {
	width: 8px;
	height: 12px;
	padding-top: 2px;
	opacity: 0.2;
}

.carousel-inner .my-caption .right:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
}

.carousel-inner .my-caption .right:hover img {
	opacity: 0.7;
}

.recruit {
	width: 100%;
	height: auto;
}

.recruit .development-history {
	width: 78%;
	margin-top: 30px;
}

.recruit .recruit-bg {
	height: 534px;
	background-color: #000000;
	overflow: hidden;
	margin-bottom: 30px;
}

.recruit .recruit-bg .video-left {
	width: 64%;
	float: left;
	position: relative;
	text-align: center;
	line-height: 500px;
}

.recruit-bg .video-left .player {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 96%;
	height: 508px;
	margin: 16px 16px 20px 16px;
}

.recruit-bg .video-left .player .big_pic {
	position: relative;
}

.recruit-bg .video-left .big_pic .small_pic {
	position: absolute;
	top: 0;
	left: 45%;
	right: 45%;
}

.video-left .player .big_pic:hover .small_pic {
	display: none;
	cursor: pointer;
}

.video-left .player .big_pic img:hover {
	cursor: pointer;
}

#animat {
	position: relative;
	animation: mymove 5s infinite;
	-webkit-animation: mymove 5s infinite;
	/*Safari and Chrome*/
	animation-direction: alternate;
	/*轮流反向播放动画。*/
	animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
	/* Safari 和 Chrome */
	-webkit-animation: mymove 5s infinite;
	-webkit-animation-direction: alternate;
	/*轮流反向播放动画。*/
	-webkit-animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
}

@keyframes mymove {
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}

@-webkit-keyframes mymove
/*Safari and Chrome*/

{
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}

.recruit .recruit-bg .video-right {
	width: 35%;
	height: 500px;
	margin-top: 20px;
	float: left;
	overflow-y: scroll;
	scrollbar-width: none;
}

.recruit .recruit-bg .video-right .col-xs-6 {
	text-align: center;
	padding: 5px;
}

.recruit .recruit-bg .video-right img {
	width: 96%;
	border-radius: 2px;
	margin-bottom: 10px;
}

.dynamic-state {
	width: 78%;
	height: auto;
	margin: 160px auto;
	overflow: hidden;
	margin-bottom: 10px;
}

.dynamic-state .state-left {
	width: 70%;
	float: left;
}

.dynamic-state .state-left .tab {
	text-align: left;
}

.dynamic-state .state-left .tab .tab-content {
	margin-top: 10px;
}

.dynamic-state .tab .nav-tabs li {
	padding: 0;
}

.dynamic-state .tab .nav-tabs li.active a {
	border-bottom: none;
	font-weight: bold;
}

.dynamic-state .tab .nav-tabs li a {
	color: #595959;
	padding: 30px 5px 0;
}

.dynamic-state .box {
	width: 4px;
	height: 20px;
	background-color: #2da7bf;
	float: left;
	margin-top: 34px;
}

.dynamic-state span {
	float: right;
	color: #373b3d;
	font-size: 12px;
	opacity: 0.6;
	font-family: AlibabaLight;
}

.dynamic-state .state-content {
	width: 100%;
	height: 152px;
	background: #fff;
	overflow: hidden;
	margin-bottom: 10px;
}

.state-content .content-img {
	width: 24%;
	float: left;
	margin: 10px;
}

.state-content .content-img img {
	width: 92%;
	height: 132px;
}

.state-content .content-text {
	width: 73%;
	float: left;
}

.state-content .content-text h6 {
	font-size: 16px;
	font-weight: bold;
	color: #373b3d;
	padding-top: 10px;
}

.state-content .content-text .content {
	font-size: 14px;
	color: #373b3d;
	opacity: 0.6;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 50px;
	word-wrap: break-word;
	white-space: normal;
	text-align: justify;
	margin-top: 14px;
	line-height: 24px;
	width: 95%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.state-content .content-text .time {
	width: 95%;
	overflow: hidden;
}

.state-content .content-text .time p {
	width: 50%;
	float: left;
	font-size: 12px;
	margin-top: 10px;
	color: #373b3d;
	opacity: 0.6;
}

.dynamic-state .state-right {
	width: 30%;
	float: left;
	overflow: hidden;
}

.state-right .newspaper {
	width: 50%;
	float: left;
	margin-left: 20px;
}

.state-right .newspaper h5 {
	margin: 34px 10px 0 10px;
	font-size: 17px;
	font-weight: bold;
}

.state-right .search-bg {
	width: 50%;
	float: right;
	position: relative;
}

.state-right .search-bg .container {
	position: absolute;
	margin: auto;
	top: -26px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 170px;
	height: 60px;
}

.state-right .search-bg .container .search {
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 20px;
	width: 34px;
	height: 34px;
	background: #2ea8c0;
	border-radius: 50%;
	transition: all 1s;
	z-index: 4;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.state-right .search-bg .container .search:hover {
	cursor: pointer;
}

.state-right .search-bg .container .search::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 12px;
	right: 0;
	bottom: 0;
	left: 16px;
	width: 6px;
	height: 1px;
	background: white;
	transform: rotate(45deg);
	transition: all .5s;
}

.state-right .search-bg .container .search::after {
	content: "";
	position: absolute;
	margin: auto;
	top: -4px;
	right: 0;
	bottom: 0;
	left: 0px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid white;
	transition: all .5s;
}

.state-right .search-bg .container input {
	font-family: 'Inconsolata', monospace;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 24px;
	outline: none;
	border: none;
	background: #2ea8c0;
	color: white;
	text-shadow: 0 0 10px #2ea8c0;
	padding: 0 80px 0 20px;
	border-radius: 30px;
	box-shadow: 0 0 8px 0 #2ea8c0, 0 6px 10px 0 rgba(0, 0, 0, 0.2);
	transition: all 1s;
	opacity: 0;
	z-index: 5;
	font-weight: bolder;
	letter-spacing: 0.1em;
	font-size: 12px;
}

.state-right .search-bg .container input:hover {
	cursor: pointer;
}

.state-right .search-bg .container input:focus {
	width: 170px;
	opacity: 1;
	cursor: text;
}

.state-right .search-bg .container input:focus ~ .search {
	right: -120px;
	background: #151515;
	z-index: 6;
}

.state-right .search-bg .container input:focus ~ .search::before {
	top: 0;
	left: 0;
	width: 18px;
}

.state-right .search-bg .container input:focus ~ .search::after {
	top: 0;
	left: 0;
	width: 18px;
	height: 1px;
	border: none;
	background: white;
	border-radius: 0%;
	transform: rotate(-45deg);
}

.state-right .search-bg .container input::placeholder {
	color: white;
	opacity: 0.5;
	font-weight: bolder;
}


/*.state-right .search .container{
	margin: 0 auto;
}
.state-right .search .search-bg img{
	width: 46%;
    margin-top: 2px;
 }*/

.state-right .newspaper-bg {
	width: 100%;
	height: 800px;
	background-color: #fff;
	margin: 70px 10px 0 10px;
	overflow-y: scroll;
}

.state-right .newspaper-bg .lsnews {
	width: 96%;
}

.state-right .newspaper-bg .lsnews .col-md-6 {
	padding: 0;
}

.state-right .newspaper-bg .lsnews img {
	width: 94%;
	margin: 24px 0 0 8px;
}

.newspaper-bg .imgSuspend {
	position: relative;
	width: 100%;
	float: left;
	margin-bottom: 4px;
}

.newspaper-bg .imgSuspend .text {
	width: 100%;
	height: 100%;
	background: #000000;
	position: absolute;
	text-align: center;
	color: #fff;
	bottom: 0;
	left: 5px;
	line-height: 230px;
	display: none;
	opacity: 0.6;
}

.newspaper-bg .imgSuspend .text p {
	font-size: 13px;
	padding: 0;
}

::-webkit-scrollbar {
	display: none;
}

html {
	overflow: -moz-scrollbars-none;
	-ms-overflow-style: none;
}


/*火狐下隐藏滚动条 */

.wrap {
	scrollbar-width: none;
}
table{
	 text-indent: 0;
}
@media screen and (min-width:1336px) and  (max-width:1400px) {
	#four_flash .flashBg ul.mobile li {
	width: 200px;
    margin-left: 12px;
    }
}
