/* 效果 */
/* 由下至上抖动 */
@-webkit-keyframes atop {
	0% {
		opacity: 0;
		-webkit-transform: translateY(200px);
		transform: translateY(200px);
	}

	25% {
		-webkit-transform: translateY(-25px);
		transform: translateY(-25px);
	}

	45% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	60% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	75% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	80% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}

	95% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	/* 
    0%,
    50%,
    90%,
    to {
        margin-bottom: 152px;
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    } */

	/* 0% {
        margin-bottom: 100px;
        opacity: 0;
        -webkit-transform: translate3d(0, 300px, 0) scaleY(5);
        transform: translate3d(0, 300px, 0) scaleY(5)
    }

    50% {
        opacity: 0.5;
        margin-bottom: 50px;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }

    90% {
        margin-bottom: 0px;
        opacity: 0.9;
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }

    to {
        margin-bottom: 0px;
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    } */
}

.pro_card {
	/* animation-name: atop; */
	/*调用move动画*/
	animation-duration: 2s;
	/*move动画从0%到100%的用时，单位为s*/
	animation-timing-function: ease-out;
	/*表示动画播放方式 ease（速度由快到慢）linear（恒定速度）ease-in(加速变化) ease-out(减速变化) ease-in-out(先加速在减速)*/
	animation-direction: normal;
	/*表示动画播放方向  normal（默认从0%到100%） alternate(偶数次从0%到100%，基数次100%到0%)*/
	animation-play-state: running;
	/*播放还是paused*/
	animation-fill-mode: backwards;
	/*定义动画开始之前和结束之后发生的操作 none（动画结束时返回第一帧） forwards(动画结束后显示最后一帧) backwards（元素应用动画样式时迅速应用动画的第一帧） both（元素动画同时具有forwards和backwards效果）*/
}

.ppp {
	animation-name: atop;
}

/* .bounceInUp_css {
    animation: atop 2s;
    animation-iteration-count: 1;
} */

.bounceInUp_css_two {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 0.3s;
}

.bounceInUp_css_there {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 0.6s;
}

.bounceInUp_css_four {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 0.9s;
}

.bounceInUp_css_five {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 1.2s;
}

.bounceInUp_css_six {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 1.5s;
}

.bounceInUp_css_seven {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 1.8s;
}

.bounceInUp_css_eight {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 2.1s;
}

.bounceInUp_css_nine {
	/* animation: atop 2s;
    animation-iteration-count: 1; */
	animation-delay: 2.4s;
}

.four_t_box {
	width: 100%;
	height: auto;
	overflow: hidden;
}

/* 背景 */
.banner {
	width: 100%;
	height: 440px;
	margin-top: 75px;
	background-color: #2338c2;
	position: relative;
}
.banner-right {
	position: absolute;
	right: 0;
	top: 0;
}
.banner-texbox {
	width: 80%;
	height: 90%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	justify-content: center;
}

.banner-p {
	font-size: 22px;
	font-family: PingFangSC-Semibold, PingFang SC;
	color: #ffffff;
	padding-bottom: 10px;
}

.banner-text {
	width: 619px;
	font-size: 40px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 700;
	color: #ffffff;
	line-height: 28px;
	margin-top: 20px;
	letter-spacing: 6px;
}

.banner-icon-box {
	width: 100%;
	display: flex;
	margin-top: 60px;
}

.b_icon img {
	width: 32px;
	height: 32px;
}

.b_icon {
	margin-right: 26px;
	text-align: center;
}

.b_icon:hover {
	cursor: pointer;
	-webkit-transform: translateY(-5fpx);
	transform: translateY(-5px);
}

.b_icon_text {
	font-size: 16px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #ffffff;
	line-height: 22px;
	margin-top: 12px;
}

/* 新闻 */
.center {
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #f6f6f6;
}
.center-t {
	width: 80%;
	height: auto;
	margin: 0 auto;
	display: flex;
}
.center-t > .center-l {
	width: 90%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0;
}
.center-t > .center-l > span:nth-child(1) {
	margin-left: 0;
}
.center-t > .center-l > .zksq {
	width: 90%;
	height: 54px;
	overflow: hidden;
	transition: height 1s ease-out;
	cursor: pointer;
}
.center-t > .center-l > .zksq > .ul {
	padding: 5px 0;
	display: flex;
	flex-wrap: wrap;
	height: 140px;
}
.center-t > .center-l > .zksq > .ul > li {
	width: 15%;
	height: 40px;
	padding-top: 5px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #ccc;
	background: #fff;
	margin-left: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: 1px solid #006eff;
	border-radius: 10px 10px;
}
.center-t > .center-l > .zksq > .ul > li:hover {
	transform: scale(1.07);
}

.center-t > .center-l > span {
	width: 15%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	margin-left: 15px;
}
.center-t > .center-l > .center-l {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}
.center-t > .center-l > .center-l > span:nth-child(1) {
	margin-left: 0;
}
.center-t > .center-l > .center-l > span {
	width: 15%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	margin-left: 15px;
	margin-top: 30px;
}
.center-t > .center-c {
	width: 12%;
	height: 40px;
	padding-top: 5px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	margin-left: -130px;
}
.center-t > .center-r {
	width: 10%;
	line-height: 40px;
	margin-top: 30px;
}

.center-t > .center-r > p {
	text-align: center;
}
#open {
	display: block;
}
#close {
	display: none;
}
#open1 {
	display: inline-block;
	width: 125px;
	line-height: 50px;
	color: #d8f5ff;
	height: 50px;
	background: #666666;
	cursor: pointer;
}
#close1 {
	display: inline-block;
	width: 125px;
	line-height: 50px;
	color: #d8f5ff;
	height: 50px;
	background: #666666;
	cursor: pointer;
}
.center-t > .center-r > a {
	color: #000;
}
.center-c {
	width: 100%;
	height: auto;
	margin: 0 auto;
	/* display: flex; */
	background: #fff;
}
/* 新闻左侧 */
.center-left {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.center-left > a {
	width: 100%;
	height: 240px;
	color: #000;
}
.center-left > a > dl {
	width: 100%;
	height: 317px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #efefef;
}
.center-left > a > dl > dt {
	width: 26%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.center-left > a > dl > dt > img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-46%, -50%);
}
.center-left > a > dl > dd {
	width: 74%;
	/* margin-left: -35px; */
}
.center-left > a > dl > dd > h4 {
	font-size: 20px;
	/* margin-top: 2px; */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.center-left > a > dl > dd > p {
	width: 100%;
	margin-top: 21px;
	font-size: 12px;
}
.center-left > a > dl > dd > .dd_t {
	width: 96%;
	height: 135px;
	overflow: hidden;
	margin-top: 21px;
	/* display: -webkit-box; */
	/* -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; */
	font-size: 14px;
}
.center-left > a > dl > dd > .dd_t > p {
	width: 96%;
	margin-top: 21px;
	overflow: hidden;
	/* word-break: break-all; */
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 14px;
}
.center-left > a > dl > dd > .dd_t > div {
	width: 96%;
	margin-top: 21px;
	overflow: hidden;
	/* word-break: break-all; */
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 14px;
}
.center-left > a > dl > dd > .dd_t > p > img {
	width: auto;
	margin-left: 5px;
	height: 58px;
	max-width: 100%;
	max-height: 317px;
}
.center-left > a > dl > dd > .dd_b {
	width: 96%;
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
}
.center-left > a > dl > dd > .dd_b > p {
	width: auto;
	text-align: center;
	height: 25px;
	line-height: 25px;
	border: 1px solid #006eff;
	border-radius: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: #006eff;
	font-size: 13px;
	margin-left: 10px;
}
.center-left > a > dl > dd > .dd_b > p:nth-child(1) {
	margin-left: 0px;
}
/* .center-left>a>dl>dd>.dd_b>p:nth-child(2){
    margin-left: 30px;
}
.center-left>a>dl>dd>.dd_b>p:nth-child(3){
    margin-left: 30px;
} */

/* 新闻右侧 */
.center-right {
	width: 30%;
	height: 800px;
	margin-left: 50px;
}
.center-right > .right_c {
	width: 100%;
	height: 300px;
}
.center-right > .right_c > .right_t {
	width: 100%;
	height: 42px;
	margin-left: 17px;
}
.center-right > .right_c > .right_t > h4 {
	width: 100%;
	height: 40px;
	font-size: 20px;
	margin-top: 16px;
	border-bottom: 1px solid #efefef;
}
.center-right > .right_c > .right_t > p {
	width: 82px;
	height: 3px;
	background: #006eff;
	margin-top: -30px;
}
.center-right > .right_c > .right_b {
	width: 100%;
	height: 246px;
	position: relative;
	overflow: hidden;
}
.center-right > .right_c > .right_b > .right_b_t {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow-x: hidden;
	overflow-y: scroll;
	left: 17px;
	top: 0;
	bottom: 0;
}
.center-right > .right_c > .right_b > .right_b_t > ul {
	width: 100%;
	height: 100%;
	/* overflow-y: auto;
    position: relative; */
}
.center-right > .right_c > .right_b > .right_b_t > ul > li {
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	border-bottom: 1px solid #efefef;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.center-right > .right_c > .right_b > .right_b_t > ul > li > img {
	width: 10px;
	height: 10px;
}

/* 评估 */
.assessment {
	width: 100%;
	height: 217px;
	background: url(../img/mm_bg.png) no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
}

.ass_title {
	width: 100%;
	text-align: center;
	font-size: 28px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #ffffff;
	line-height: 40px;
	margin-top: 41px;
}

.assbtu {
	width: 400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
}

.btuleft {
	width: 189px;
	height: 57px;
	background: #ffffff;
	border-radius: 3px;
	text-align: center;
	line-height: 57px;
	font-size: 20px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #3860f4;
	cursor: pointer;
}

.bturight {
	width: 189px;
	height: 57px;
	border-radius: 3px;
	border: 2px solid #ffffff;
	font-size: 20px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #ffffff;
	line-height: 28px;
	text-align: center;
	line-height: 57px;
	box-sizing: border-box;
	cursor: pointer;
}
.news-introduction-container {
	width: 80%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-top: 20px;
	border-bottom: #dcdfe6 solid 1px;
}
.news-introduction {
	display: flex !important;
	padding: 20px 0;
	width: 60%;
}
.news-introduction-cover {
	transition: all 0.5s;
}
.news-introduction-container:hover .news-introduction-cover {
	transform: scale(1.03);
}
.news-introduction-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 15px;
}
.news-introduction-title {
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
}
.news-introduction-title:hover {
	color: #3860f4;
}
.news-introduction-arrow {
	cursor: pointer;
}
.news-introduction-num {
	color: #888888;
	padding: 20px 0;
}
.news-introduction-content {
	width: 100%;
	color: #888888;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-all;
	-webkit-line-clamp: 2;
	margin-bottom: 16px;
	margin-top: 20px;
	line-height: 28px;
}
.news-introduction-type {
	display: flex;
	align-items: center;
}
.news-introduction-type > div {
	color: #999999;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 14px;
	margin-left: 20px;
}
.news-introduction-opt {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin-left: 60px;
}
.news-introduction-time {
	font-size: 20px;
	color: #999999;
	padding-top: 20px;
}
.news-type-btn {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	color: #666666;
	font-weight: 700;
	font-size: 18px;
	margin-top: 60px;
}
.news-type-btn div {
	padding-left: 30px;
	cursor: pointer;
	transition: all 0.3s;
}
.news-type-btn div:hover {
	color: #3860f4;
}
.news-type-btn-active {
	color: #3860f4;
}
.news-empty {
	text-align: center;
	margin: 30px 0;
	display: none;
}
.M-box {
	margin-top: 80px !important;
	margin-bottom: 50px;
}
.paging-container {
	width: 90%;
	text-align: right;
}
