/* 变量 */
html,
body {
	width: 100%;
	font-size: 14px;
}
body {
	min-width: 1366px;
	overflow: auto;
}
body {
	background-color: #fff;
}
a {
	color: #0766FE;
	text-decoration: none;
}
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: rgba(0, 0, 0, 0.02);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb {
	border-radius: 7px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: rgba(0, 0, 0, 0.05);
}
/* --- layout start --- */
.container {
	width: 100%;
	padding: 0;
}
.header {
	/*padding: 22px 120px 0;*/
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
}
.header .left-logo {
	width: 100%;
	padding: 0 120px;
	background: #fff;
	height: 96px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}
.header .left-logo img {
	height: 58px;
}
.header .right-block {
	position: relative;
	width: 100%;
	padding: 0 120px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	background: #1E54AB;
	box-sizing: border-box;
}
.header .search-content {
	position: absolute;
	top: -65px;
	right: 120px;
	width: 380px;
	height: 36px;
	margin-left: auto;
}
.header .search-content .search {
	width: 100%;
	height: 36px;
	padding: 0 12px;
	line-height: 36px;
	border-radius: 20px;
	background: #1E54AB;
	color: #fff;
	border: none;
	box-sizing: border-box;
}
.header .search-content input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff;
}
.header .search-content :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
}
.header .search-content ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
}
.header .search-content input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}
.header .search-content input::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}
.header .search-content .icon {
	position: absolute;
	top: 50%;
	right: 12px;
	font-size: 16px;
	color: #fff;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.navs {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: nowrap;
}
.navs>li {
	position: relative;
	font-size: 18px;
	flex-shrink: 0;
}
.navs>li:hover {
	font-weight: 700;
}
.navs>li a {
	display: block;
	padding: 13px 16px;
	color: #fff;
	flex-wrap: nowrap;
	text-decoration: none;
}
.navs>li.active {
	font-weight: 700;
}
.navs .sub-nav {
	display: none;
	position: absolute;
	top: 90%;
	left: 0;
	z-index: 120;
}
.navs li:hover .sub-nav{
	display:block;
}
.navs .sub-nav li {
	background: #1E54AB;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navs .sub-nav li:hover {
	background: #3e559f;
	cursor: pointer;
}
.navs .sub-nav li a {
	min-width: 150px;
	padding: 14px 16px;
	display: block;
	color: #fff;
	font-weight: normal;
}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 10px 0;
}
.swiper-container-vertical>.swiper-pagination-bullets {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.mySwiper {
	width: 100%;
	height: 550px;
	overflow: hidden;
}
.mySwiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	/*line-height: 10px;*/
	color: #fff;
	background: rgba(255, 255, 255, 0.55);
	opacity: 1;
	font-size: 0;
	border-radius: 50%;
	margin-left: 10px !important;
	margin-right: 10px !important;
}
.mySwiper .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	line-height: 12px;
	color: #1E54AB;
	background: #128CFD;
	opacity: 1;
	font-size: 14px;
	font-weight: bold;
}
.mySwiper img {
	width: 100%;
}
.mySwiper .slide-item {
	width: 100%;
	height: 100%;
	position: relative;
	background: #011F8F;
}
.mySwiper .slide-item .banner-info {
	position: absolute;
	top: 0;
	right: 0;
	padding: 70px 70px 0 34px;
	background-color: rgba(1, 31, 143, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	width: 40%;
	height: 100%;
	box-sizing: border-box;
}
.mySwiper .slide-item .title {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 30px;
	line-height: 170%;
}
.mySwiper .slide-item .info p {
	display: inline;
	font-style: normal;
	font-weight: 290;
	font-size: 16px;
	line-height: 170%;
}
.mySwiper .slide-item .info .detail-btn {
	margin-left: auto;
	font-size: 16px;
}
.mySwiper .slide-item .close-btn {
	position: absolute;
	bottom: 10px;
	right: 70px;
	width: 72px;
	height: 72px;
	background: url("../images/close.png") no-repeat center center;
	cursor: pointer;
}
.mySwiper .slide-item .open-btn {
	display: none;
	position: absolute;
	bottom: 10px;
	right: 70px;
	width: 72px;
	height: 72px;
	background: url("../images/close.png") no-repeat center center;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	cursor: pointer;
}
.mySwiper .slide-item .banner-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 78px;
	padding: 10px;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	background: rgba(0, 7, 30, 0.45);
}
.block-title {
	padding: 24px 0;
	text-align: center;
}
.block-title .title {
	min-width: 356px;
	height: 88px;
	line-height: 88px;
	display: inline-block;
	text-align: center;
	background: url(../images/title-bg1.png) no-repeat left top, url(../images/title-bg2.png) no-repeat right bottom;
	cursor: pointer;
}
.block-title .title-spc {
	background: url(../images/title-bg5.png) no-repeat left top, url(../images/title-bg6.png) no-repeat right bottom;
}
.block-title .title-spc span {
	color: #fff !important;
}
.block-title span {
	font-size: 38px;
	color: #001547;
	font-weight: 700;
	transition: all 0.3s;
}
.block-title .title:hover span {
	text-shadow: 0 12px 22px rgba(0, 21, 71, 0.6);
}
.about-all-block {
	padding: 0 120px 24px;
}
.about-all-block .block-content {
	width: 100%;
	min-height: 400px;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.about-all-block .left-intro {
	flex: 1;
	margin-right: 24px;
	height: 100%;
	overflow: hidden;
}
.about-all-block .left-intro .intro-name {
	margin-bottom: 24px;
	font-size: 28px;
	color: #103E89;
}
.about-all-block .left-intro .language-title {
	display: none;
}
.about-all-block .left-intro .language-title.active {
	display: inline-block;
}
.about-all-block .left-intro .intro-info {
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
	color: #121515;
}
.about-all-block .left-intro .intro-info p {
	text-indent: 32px;
}
.about-all-block .right-img {
	flex: 0 0 40%;
	height: 100%;
}
.about-all-block .right-img img {
	width: 100%;
	height: 100%;
}
.about-all-block .language-tab {
	float: right;
	display: flex;
	flex-direction: row;
	justify-items: center;
	align-items: center;
}
.about-all-block .language-tab li {
	margin-right: 15px;
}
.about-all-block .language-tab li a {
	display: block;
	width: 86px;
	height: 33px;
	line-height: 33px;
	background: url("../images/home-bg.png") no-repeat center center;
	background-size: 100% 100%;
	color: #1E54AA;
	transition: all 0.3s;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
}
.about-all-block .language-tab li:hover a,
.about-all-block .language-tab li.active a {
	background: url("../images/home-active-bg.png") no-repeat center center;
	background-size: 100% 100%;
	color: #fff;
}
.about-all-block .language-info {
	display: none;
}
.about-all-block .language-info p {
	margin-bottom: 10px;
}
.about-all-block .language-info.active {
	display: block;
}
.review-block {
	background: url("../images/gk-bg.png") no-repeat center center #1E54AB;
	background-size: 100% 100%;
	padding: 0 120px;
}
.review-block .block-content {
	width: 100%;
}
.review-block .block-content img {
	width: 100%;
	height: auto;
}
.news-block {
	padding: 0 120px 24px;
}
.news-block .block-content {
	width: 100%;
}
.news-block .news-list {
	width: 100%;
	display: flex;
	margin: 0 -12px;
}
.news-block li {
	width: 33.33%;
}
.news-block li a {
	display: block;
	width: 100%;
	padding: 0 12px;
	text-decoration: none;
	box-sizing: border-box;
}
.news-block li .list-item {
	/*cursor: pointer;*/
}
.news-block li .list-item:hover .list-info {
	background: #011F8F;
	color: #fff;
}
.news-block li .list-item:hover .list-pic .title {
	color: #fff;
}
.news-block li .list-pic {
	position: relative;
	width: 100%;
	height: 284px;
	border-radius: 6px;
	overflow: hidden;
	text-align: center;
}
.news-block li .list-pic .title {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 16px 0;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: all 0.3s;
}
.news-block li .list-pic img {
	width: 100%;
	height: 100%;
	/* position: relative;
        left: 50%;
        transform: translateX(-50%);*/
}
.news-block li .list-info {
	padding: 30px 16px 20px;
	color: #121515;
	transition: all 0.3s;
}
.news-block li .list-info .name {
	margin-bottom: 25px;
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-block li .list-info .info {
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.footer {
	width: 100%;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	background: #000A22;
}
.footer .footer-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: center;
	padding: 45px 120px;
	background-size: 100% 100%;
}
.footer .footer-content .footer-badge {
	margin-right: 40px;
}
.footer .footer-content .footer-code {
	margin-left: auto;
}
.footer .footer-content .footer-info {
	font-size: 16px;
}
.footer .footer-content .footer-info .item {
	color: #fff;
}
.footer .footer-copyright {
	width: 100%;
	height: 56px;
	line-height: 56px;
	color: #fff;
}
@media screen and (max-width: 1800px) {
	.mySwiper img {
		height: 100%;
		width: auto;
	}
}
@media screen and (max-width: 1440px) {
	.header {
		/*padding-right: 50px;
    padding-left: 50px;*/
	}
	.header img {
		/* width: 80%;*/
	}
	.about-all-block,
	.review-block,
	.news-block,
	.footer {
		padding-right: 50px;
		padding-left: 50px;
	}
	.footer .footer-content {
		padding: 45px 50px;
	}
}
.main-wrapper .about-all-title {
	text-align: left;
	color: #103E89;
	font-weight: 700;
	font-size: 28px;
	line-height: 200%;
}
.about-all-tab p {
	text-indent: 36px;
	font-size: 18px;
	line-height: 32px;
}
.person-detail-content {
	display: flex;
	justify-content: start;
	flex-wrap: nowrap;
}
.person-detail-content .person-pic {
	width: 268px;
	height: 336px;
}
.person-detail-content .person-pic img {
	width: 100%;
}
.person-detail-content .person-info {
	flex: 1;
	margin-left: 24px;
}
.person-detail-content .name {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(16, 16, 16, 0.2);
}
.person-detail-content .name p {
	display: inline-block;
	margin-bottom: 0;
}
.person-detail-content .name span:first-child,
.person-detail-content .name .first-name {
	margin-right: 10px;
	font-weight: 700;
	font-size: 32px;
	line-height: 32px;
}
.person-detail-content .name span:last-child,
.person-detail-content .name .sub-name {
	font-weight: 700;
	font-size: 22px;
	line-height: 100%;
}
.person-detail-content .desc {
	padding-top: 20px;
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
}
.person-detail-content .desc p {
	text-indent: 36px;
}
.person-detail-content .desc .font-bold {
	font-weight: bold !important;
}
.person-detail-content .person-label {
	padding-left: 36px;
	padding-top: 24px;
}
.person-detail-content .label-name {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
	line-height: 32px;
}
.person-detail-content p {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
}
.recruit-content {
	display: flex;
	justify-content: start;
	flex-wrap: nowrap;
	border: 1px solid #E9EEF7;
}
.recruit-content .left-date {
	width: 110px;
	height: 426px;
	background: rgba(30, 84, 171, 0.05);
	font-weight: 700;
	font-size: 20px;
	line-height: 170%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.recruit-content .right-table {
	flex: 1;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
}
.recruit-content .right-table .h3 {
	text-align: left;
}
.recruit-content .recruit-table {
	flex: 1;
	border: 1px solid #f2f2f2;
}
.recruit-content .recruit-table th {
	padding: 16px;
	background: #FAFAFA;
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	border: 1px solid #f2f2f2;
}
.recruit-content .recruit-table td {
	padding: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 40px;
	border: 1px solid #f2f2f2;
}
.graduate-content li {
	margin-bottom: 24px;
	border: 1px solid #E9EEF7;
}
.graduate-content li .name {
	padding: 8px;
	background: rgba(30, 84, 171, 0.05);
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
}
.graduate-content li .info {
	padding: 8px;
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
}