@charset "UTF-8";
/* 头部 */
.header {
	background-color: #3356cd;
	position: relative;
}
.header-top-box {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
	height: 123px;
}
.logo {
	display: block;
	font-size: 0;
}
.header-right {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.school-link {
	font-size: 16px;
	color: #fff;
	margin-right: 25px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.school-link:hover {
	opacity: .8;
}
.search-btn {
	display: block;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.search-btn:hover {
	opacity: .8;
}
/* 汉堡按钮（PC端隐藏） */
.menu-btn {
	display: none;
	width: 26px;
	cursor: pointer;
	margin-left: 20px;
}
.menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.menu-btn span + span {
	margin-top: 7px;
}
.menu-btn.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
	-webkit-transform: translateY(9px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
	opacity: 0;
}
.menu-btn.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
	-webkit-transform: translateY(-9px) rotate(-45deg);
}
/* 导航 */
.header-nav {
	border-top: 1px solid rgba(255, 255, 255, .2);
}
.nav {
	display: flex;
	display: -webkit-flex;
}
.nav > li {
	position: relative;
	flex: 1;
	-webkit-flex: 1;
	text-align: center;
}
.nav > li > a {
	display: inline-block;
	position: relative;
	line-height: 56px;
	font-size: 18px;
	color: #fff;
    font-weight: bold;
}
/* 下拉箭头 */
.nav > li.has-sub > a {
	padding-right: 18px;
}
.nav > li.has-sub > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -6px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.nav > li.has-sub:hover > a::before {
	margin-top: -2px;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
/* 选中/悬浮下划线 */
.nav > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 3px;
	background-color: #fff;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.nav > li.has-sub > a::after {
	left: calc(50% - 9px);
}
.nav > li.on > a::after,
.nav > li:hover > a::after {
	width: 24px;
}
/* 二级栏目 */
.sub-nav {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 999;
	min-width: 140px;
	padding: 8px 0;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
	transform: translate(-50%, 10px);
	-webkit-transform: translate(-50%, 10px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.nav > li.has-sub:hover .sub-nav {
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	opacity: 1;
	visibility: visible;
}
.sub-nav li a {
	display: block;
	line-height: 42px;
	font-size: 16px;
	color: #333;
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.sub-nav li a:hover {
	color: #fff;
	background-color: #3356cd;
}
/* 移动端专用栏目（PC端隐藏） */
.nav > li.m-school {
	display: none;
}
/* 搜索弹层 */
.search-box {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
	padding: 20px 0;
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.search-box.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}
.search-form {
	display: flex;
	display: -webkit-flex;
}
.search-input {
	flex: 1;
	-webkit-flex: 1;
	height: 46px;
	border: 1px solid #ddd;
	border-right: 0;
	padding: 0 15px;
	font-size: 15px;
	color: #333;
	box-sizing: border-box;
}
.search-input::placeholder {
	color: #999;
}
.search-submit {
	width: 110px;
	height: 46px;
	background-color: #3356cd;
	color: #fff;
	font-size: 16px;
	border: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.search-submit:hover {
	opacity: .85;
}
/* end 头部 */

/* 新闻动态 + 通知公告 */
.sec1 {
	padding: 50px 0;
}
.sec1-box {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
/* 左侧轮播 */
.sec1-left {
	width: 60.3%;
}
.news-swiper {
	width: 100%;
	aspect-ratio: 820 / 496;
	overflow: hidden;
	position: relative;
}
.news-swiper .swiper-wrapper,
.news-swiper .swiper-slide {
	height: 100%;
}
.news-swiper .swiper-slide a {
	display: block;
	position: relative;
	height: 100%;
}
.news-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120px;
	background-color: rgba(51, 86, 205, .6);
	padding: 16px 150px 0 25px;
	box-sizing: border-box;
	color: #fff;
}
.slide-info h3 {
	font-size: 18px;
	font-weight: bold;
    color: #f2c950;
}
.slide-info p {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 8px;
	opacity: .9;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.news-swiper .swiper-pagination {
	left: auto;
	right: 30px;
	bottom: 55px;
	width: auto;
}
.news-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, .6);
	opacity: 1;
	margin: 0 4px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.news-swiper .swiper-pagination-bullet-active {
	background-color: #f2c950;
}
/* 右侧通知公告 */
.sec1-right {
	width: 37%;
}
.sec-title {
	position: relative;
	display: flex;
	display: -webkit-flex;
	align-items: flex-end;
}
.sec-title h3 {
	font-size: 36px;
	font-weight: bold;
	color: #000;
	white-space: nowrap;
}
.sec-title h3 em {
	font-size: 16px;
	font-weight: normal;
	color: #3356cd;
	margin-left: 8px;
}
.sec-title .line {
	flex: 1;
	-webkit-flex: 1;
	height: 1px;
	border-bottom: 1px dashed #3356cd;
	margin: 0 0 8px 12px;
}
.sec-title .more {
	position: absolute;
	right: 0;
	bottom: 18px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	font-size: 14px;
	color: #3356cd;
	white-space: nowrap;
}
.sec-title .more img {
	margin-left: 8px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.sec-title .more:hover img {
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
}
/* 公告列表 */
.notice-list li {
	border-bottom: 1px solid #eee;
}
.notice-list li a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding: 20px 0;
}
.notice-list .date {
	position: relative;
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	width: 70px;
    height: 70px;
	margin-right: 22px;
	background-color: #5171e1;
	color: #fff;
	text-align: center;
	padding: 12px 0 8px;
    box-sizing: border-box;
}
/* 日期右侧倒三角 */
.notice-list .date::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 6px;
	width: 12px;
	height: calc(100% - 6px);
	background: linear-gradient(to bottom right, #c1ccf0 49.5%, transparent calc(49.5% + 1.5px));
}
.notice-list .date b {
	display: block;
	font-size: 24px;
	line-height: 1.1;
}
.notice-list .date span {
	display: block;
	font-size: 14px;
	opacity: .85;
}
.notice-list li p {
	flex: 1;
	-webkit-flex: 1;
	font-size: 18px;
	color: #333;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.notice-list li a:hover p {
	color: #3356cd;
}
/* end 新闻动态 + 通知公告 */

/* 新闻 + 系列讲座 */
.sec2 {
	padding-bottom: 50px;
}
.sec2-box {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.sec2-left {
	width: 60.3%;
}
.sec2-right {
	width: 37%;
}
/* 头条新闻 */
.news-top {
	display: flex;
	display: -webkit-flex;
	margin-top: 35px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 50px;
}
.news-top .pic {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	width: 33%;
	aspect-ratio: 270 / 183;
	overflow: hidden;
}
.news-top .pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.news-top:hover .pic img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.news-top .info {
	flex: 1;
	-webkit-flex: 1;
	padding-left: 22px;
	overflow: hidden;
}
.news-top .info h4 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.news-top:hover .info h4 {
	color: #3356cd;
}
.news-top .date {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	font-size: 16px;
	color: #3356cd;
	margin: 12px 0;
	padding-left: 20px;
	background: url(../images/i2.png) no-repeat left center;
}
.news-top .info p {
	font-size: 16px;
	color: #666;
	line-height: 1.9;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.news-top .detail {
	display: inline-flex;
	display: -webkit-inline-flex;
	align-items: center;
	font-size: 16px;
	color: #f2c950;
	margin-top: 15px;
}
.news-top .detail img {
	margin-left: 8px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.news-top:hover .detail img {
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
}
/* 新闻列表 */
.news-list {
	margin-top: 30px;
}
.news-list li a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding: 12px 0 12px 30px;
	background: url(../images/list-icon.png) no-repeat left center;
}
.news-list li p {
	flex: 1;
	-webkit-flex: 1;
	font-size: 18px;
	color: #333;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.news-list li a:hover p {
	color: #3356cd;
}
.news-list li span {
	font-size: 16px;
	color: #999;
	margin-left: 20px;
}
/* 系列讲座列表 */
.lecture-list {
	margin-top: 35px;
}
.lecture-list li a {
	display: block;
	position: relative;
	background: #f3f5fc url(../images/more3.png) no-repeat right 18px bottom 16px;
	border-bottom: 1px solid #c3cef4;
	padding: 16px 20px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.lecture-list li a:hover {
	background-color: #5171e1;
	background-image: url(../images/more3-on.png);
}
.lecture-list h4 {
	font-size: 16px;
	color: #3356cd;
	margin-bottom: 8px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.lecture-list li a:hover h4 {
	color: #fff;
}
.lecture-list p {
	font-size: 14px;
	color: #555;
	line-height: 1.9;
	padding-left: 25px;
	background-repeat: no-repeat;
	background-position: left center;
	-webkit-transition: color .3s ease-in-out;
	transition: color .3s ease-in-out;
}
.lecture-list li a:hover p {
	color: #fff;
}
.lecture-list .p1 {
	background-image: url(../images/i1.png);
}
.lecture-list .p2 {
	background-image: url(../images/i2.png);
}
.lecture-list .p3 {
	background-image: url(../images/i3.png);
}
.lecture-list li a:hover .p1 {
	background-image: url(../images/i1-on.png);
}
.lecture-list li a:hover .p2 {
	background-image: url(../images/i2-on.png);
}
.lecture-list li a:hover .p3 {
	background-image: url(../images/i3-on.png);
}
/* end 新闻 + 系列讲座 */

/* 页脚 */
.footer {
	background-color: #3356cd;
}
/* 相关链接 */
.footer-links {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.links-box {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding: 20px 0;
}
.links-box b {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	font-size: 24px;
	color: #fff;
	margin-right: 20px;
}
.links-box .links {
	flex: 1;
	-webkit-flex: 1;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	overflow: hidden;
}
.links-box .links li {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	line-height: 1.8;
}
.links-box .links li a {
	font-size: 16px;
	color: #fff;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.links-box .links li a:hover {
	opacity: .7;
}
/* PC端相关链接默认只显示一行，点击箭头展开 */
@media screen and (min-width: 1025px) {
	.links-box .links {
		max-height: 30px;
		-webkit-transition: max-height .3s ease-in-out;
		transition: max-height .3s ease-in-out;
	}
	.links-arrow {
		align-self: flex-start;
		-webkit-align-self: flex-start;
		margin-top: 10px;
	}
	.footer-links.open .links-box .links {
		max-height: 120px;
	}
	.footer-links.open .links-arrow {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}
.links-box .links li + li::before {
	content: "|";
	color: rgba(255, 255, 255, .5);
	margin: 0 15px;
}
/* 右侧细线箭头 */
.links-arrow {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	width: 9px;
	height: 9px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin-left: 20px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.links-arrow:hover {
	opacity: .7;
}
/* 底部信息 */
.footer-box {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0 45px;
}
.footer-left {
	overflow: hidden;
}
.footer-logo {
	display: block;
	max-width: 100%;
	height: auto;
    margin-bottom: 30px;
}
.footer-left p {
	font-size: 16px;
	color: #fff;
	margin-top: 22px;
}
.footer-left p + p {
	margin-top: 14px;
}
.footer-left p em {
	margin-left: 32px;
}
.footer-ewm {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	text-align: center;
	margin-left: 40px;
}
.footer-ewm img {
	display: block;
	margin: 0 auto;
}
.footer-ewm p {
	font-size: 15px;
	color: #fff;
	margin-top: 10px;
}
/* end 页脚 */

/* ============ 列表页 ============ */
/* 内页banner */
.ny-banner {
	height: 240px;
	overflow: hidden;
}
.ny-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 主体布局 */
.ny-main {
	padding: 50px 0 60px;
}
.ny-box {
	display: flex;
	display: -webkit-flex;
	align-items: flex-start;
}
/* 左侧菜单 */
.ny-side {
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	width: 280px;
	margin-right: 40px;
}
.side-title {
	background-color: #3356cd;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	padding: 25px 20px;
    height: 120px;
    box-sizing: border-box;
}
.side-menu {
	background-color: #f5f6fc;
}
.side-menu > li {
	border-bottom: 1px solid #eee;
}
.side-menu > li > a {
	position: relative;
	display: block;
	font-size: 18px;
	color: #333;
	padding: 17px 20px 17px 28px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.side-menu > li > a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 4px;
	height: 20px;
	background-color: #3356cd;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.side-menu > li.on > a,
.side-menu > li > a:hover {
	color: #3356cd;
}
.side-menu > li.on > a::before,
.side-menu > li > a:hover::before {
	opacity: 1;
}
/* 三级栏目 */
.side-sub li {
	border-top: 1px solid #eee;
}
.side-sub li a {
	display: block;
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	padding: 15px 20px 15px 60px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.side-sub li.on a,
.side-sub li a:hover {
	color: #3356cd;
}
/* 右侧内容 */
.ny-content {
	flex: 1;
	-webkit-flex: 1;
	overflow: hidden;
}
.ny-title {
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid #eee;
	padding-bottom: 18px;
}
/* 标题下蓝色短线 */
.ny-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 72px;
	height: 3px;
	background-color: #3356cd;
}
.ny-title h3 {
	flex: 0 0 56%;
	-webkit-flex: 0 0 56%;
	max-width: 56%;
	font-size: 36px;
	font-weight: bold;
	color: #000;
	line-height: 1.15;
}
.crumbs {
	flex: 0 0 40%;
	-webkit-flex: 0 0 40%;
	max-width: 40%;
	font-size: 14px;
	line-height: 1.8;
	color: #999;
	text-align: right;
	padding-top: 6px;
	word-break: break-all;
}
.crumbs a {
	color: #999;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.crumbs a:hover {
	color: #3356cd;
}
.crumbs em {
	color: #3356cd;
}
/* 列表页头条间距微调 */
.ny-content .news-top {
	margin-top: 30px;
	padding-bottom: 35px;
}
.ny-content .news-list {
	margin-top: 20px;
}
/* 分页 */
.paging {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	margin-top: 40px;
}
.paging a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	background-color: #f5f5f5;
	font-size: 14px;
	color: #666;
	margin-left: 8px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.paging a:hover,
.paging a.on {
	background-color: #3356cd;
	color: #fff;
}
.paging .num {
	min-width: 30px;
	padding: 0 5px;
}
.paging .prev,
.paging .next {
	padding: 0 12px;
}
/* 分页细线箭头 */
.paging .prev i,
.paging .next i {
	width: 7px;
	height: 7px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.paging .prev i {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	margin-right: 6px;
}
.paging .next i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin-left: 6px;
}
.paging .prev:hover i,
.paging .next:hover i {
	border-color: #fff;
}
.paging .dots {
	font-size: 14px;
	color: #999;
	margin-left: 8px;
}
/* 跳转 */
.paging .jump {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	font-size: 14px;
	color: #666;
	margin-left: 15px;
}
.jump-input {
	width: 40px;
	height: 30px;
	border: 1px solid #ddd;
	background-color: #fff;
	font-size: 14px;
	color: #333;
	text-align: center;
	margin: 0 8px;
}
.paging .go {
	background-color: #3356cd;
	color: #fff;
	padding: 0 10px;
}
.paging .go:hover {
	opacity: .85;
}
/* ============ end 列表页 ============ */

/* ============ 详情页 ============ */
.article {
	padding-top: 35px;
}
.article-title {
	font-size: 30px;
	font-weight: bold;
	color: #000;
	text-align: center;
	line-height: 1.6;
}
.article-meta {
	text-align: center;
	font-size: 16px;
	color: #666;
	border-bottom: 1px solid #eee;
	margin-top: 15px;
	padding-bottom: 20px;
}
.article-meta span + span {
	margin-left: 25px;
}
.article-body {
	padding-top: 25px;
}
.article-body p {
	font-size: 18px;
	color: #333;
	line-height: 2;
	text-indent: 2em;
	margin-bottom: 15px;
}
/* 正文图片居中 */
.article-body .pic-p {
	text-align: center;
	text-indent: 0;
}
.article-body img {
	max-width: 100%;
	height: auto;
}
/* ============ end 详情页 ============ */


/*add*/
.nav > li.parent > a::after, .nav > li.selected > a::after {
	width: 24px;
}

.side-menu > li.parent > a, .side-menu > li.selected > a {
	color: #3356cd;
}
.side-menu > li.parent > a::before, .side-menu > li.selected > a::before {
	opacity: 1;
}
.side-sub li.selected a {
	color: #3356cd;
}

#wp_paging_w50{
	margin-top:10px;
}
