html,
body {
  padding: 0;
  margin: 0;
  font-family: MicrosoftYaHei-Bold;
  overflow-x: hidden;
  color: #333333;
}
@font-face {
  font-family: '方正小标宋简';
  src: url('../font/方正小标宋简.TTF') format('truetype');
}
div {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
img {
  display: block;
}
.hover {
  cursor: pointer;
}
/* 主题色 */
.no-blod {
  font-weight: 500 !important;
}
.color-red {
  color: #c11923;
}
/* 布局 */
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-between {
  justify-content: space-between;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column-center {
  display: flex;
  align-items: center;
}
.flex-row-center {
  display: flex;
  align-items: center;
}
.flex-row-end {
  display: flex;
  justify-content: flex-end;
}
.flex-one {
  flex: 1;
}
/* 容器 */
.container {
  width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.font40 {
  font-size: 40px !important;
}
.font36 {
  font-size: 36px !important;
}
.font30 {
  font-size: 30px !important;
}
/*--- 移入动画 -------*/
.item-hover {
  position: relative;
  overflow: hidden;
}
.item-hover:before {
  content: '';
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent transparent transparent #04429b;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s ease;
}
.item-hover:after {
  content: '';
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent #122b88 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
}
.item-hover.active:before,
.item-hover:hover:before,
.item-hover.active:after,
.item-hover:hover:after {
  border-width: 100px 762.5px;
  z-index: 1;
}
.item-line-hover {
  position: relative;
}
.item-line-hover:before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  left: 50%;
  bottom: 0;
  background-color: transparent;
  transition: all 0.3s ease-out;
}
.item-line-hover:hover:before {
  width: 100%;
  left: 0;
  background-color: #122b88;
}
/* 头部导航 */
header {
  background: url("../image/nav-bg.png");
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  color: white;
  transition: all 0.3s ease;
}
header:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url("../image/nav-bg2.jpg");
  background-size: 100% 100%;
}
header .nav-top-bg {
  height: 38px;
  background: #122b88;
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
}
header .containerNav {
  width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  padding-top: 10px;
}
header .containerNav .navigation {
  align-items: end;
}
header .containerNav .navigation .daohang {
  flex: 1;
}
header .containerNav .navigation .logo {
  width: 450px;
  margin-bottom: 20px;
}
header .containerNav .navigation .logo ._logo2 {
  display: none;
}
header .containerNav .navigation .logo ._logo3 {
  display: none;
}
header .containerNav .navigation .logo img {
  width: 100%;
}
header .containerNav .fast-link {
  font-size: 14px;
  padding: 5px 0;
  transition: all 1s ease;
}
header .containerNav .fast-link .container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
header .containerNav .fast-link a {
  color: white;
  text-shadow: 1px 2px 3px #171616;
}
header .containerNav .fast-link .item {
  padding: 0 20px;
  position: relative;
  border-bottom: 1px solid transparent;
  height: 18px;
}
header .containerNav .fast-link .item:after {
  content: "";
  display: block;
  border: 1px solid white;
  position: absolute;
  height: 70%;
  left: 0;
  top: 15%;
}
header .containerNav .fast-link .item:first-child:after {
  display: none;
}
header .containerNav .fast-link .item:hover {
  border-bottom-color: white;
}
header .containerNav .fast-link .search {
  margin-right: 16px;
  font-size: 20px;
}
header.down {
  top: -50px;
}
header.active {
  background: white;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
header.active .nav-top-bg {
  top: 0;
  height: 45px;
}
header.active .fast-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header.active .fast-link .container {
  padding: 0 20px;
}
header.active .pcNav > li > a {
  font-weight: bold;
  color: #585859;
  text-shadow: none;
}
header.active .pcNav > li > a:before {
  box-shadow: none;
  background: #7d7d7d;
}
header.active .containerNav {
  padding-top: 45px;
}
header.active .containerNav .navigation .logo {
  margin-bottom: 5px;
}
header.active .containerNav .navigation .logo ._logo1 {
  display: none;
}
header.active .containerNav .navigation .logo ._logo2 {
  display: block;
}
/* 轮播 */
#banner {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#banner .down-page {
  margin: 0 auto;
  background-image: url("../image/down-icon.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center -10px;
  width: 35px;
  height: 15px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  opacity: 0.8;
}
#banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .swiper-pagination {
  bottom: 45px;
  display: flex;
  justify-content: center;
}
#banner .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  border: solid 1px #122b88;
  background: none;
  opacity: 1;
  margin: 0 10px;
  color: white;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
#banner .swiper-pagination .swiper-pagination-bullet span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #122b88;
}
#banner .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #c11923;
}
#banner .swiper-pagination .swiper-pagination-bullet-active span {
  background-color: #c11923;
}
/* 内容 */
.layout-content .con-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.layout-content .con-header .icon-ti {
  width: 359px;
}
.layout-content .con-header .line-box {
  margin-top: 14px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layout-content .con-header .line-box .line {
  background: url("../image/ti-line.png");
  background-size: 100% 100%;
  height: 3px;
  width: 100%;
}
.layout-content .con-header .line-box .block-line {
  width: 395px;
  height: 8px;
  position: absolute;
  background-color: #122b88;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 2px;
}
.layout-content .con-header .line-box .triangle {
  width: 60px;
  height: 39px;
  background-image: url("../image/triangle-icon.png");
  background-size: 100% 100%;
}
.layout-content .nav-header {
  padding-top: 20px;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 90;
}
.layout-content .nav-header.border-bottom {
  border-bottom: 3px solid #04429b;
}
.layout-content .nav-header .title-box {
  display: flex;
  align-items: center;
  max-height: 64px;
}
.layout-content .nav-header .title-box#noticetabs .title:hover {
  cursor: pointer;
}
.layout-content .nav-header .title-box .title {
  padding: 15px 0px;
  font-weight: bold;
  font-family: 方正小标宋简;
  padding-right: 15px;
}
.layout-content .nav-header .title-box .title .iconfont {
  font-size: 28px;
  margin-right: 10px;
  display: inline-block;
}
.layout-content .nav-header .title-box .title .iconfont.border-white {
  border: 2px solid white;
  padding: 3px;
  font-size: 28px;
}
.layout-content .nav-header .title-box .title .iconfont.border-blue {
  border: 2px solid #1250a7;
  padding: 3px;
  font-size: 24px;
}
.layout-content .nav-header .title-box .title:nth-child(2) {
  padding-left: 15px;
  position: relative;
}
.layout-content .nav-header .title-box .active {
  color: #04429b;
}
.layout-content .nav-header .float-more {
  position: absolute;
  right: 0;
}
.layout-content .nav-header .more {
  font-size: 14px;
  color: #666666;
}
.layout-content .nav-header .more .line {
  width: 21px;
  margin: 0 10px;
  border: 1px solid #666666;
  transition: all 0.2s ease;
}
.layout-content .nav-header .more:hover {
  color: #04429b;
}
.layout-content .nav-header .more:hover .line {
  transform: translateX(10px);
}
.layout-content .nav-header.white {
  border-color: white;
  color: white;
}
.layout-content .nav-header.white .more {
  color: white;
}
.layout-content .nav-header.white .more .line {
  border-color: white;
}
.layout-content .con-list .text_item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  overflow: hidden;
  box-shadow: 0px 0px 8px rgba(133, 133, 133, 0.6);
  background: white url("../image/logo3.png") no-repeat;
  background-size: 60px 60px;
  background-position: right bottom;
  margin-bottom: 15px;
  transition: all 0.6s ease !important;
  border: solid 1px #122b88;
}
.layout-content .con-list .text_item:last-child {
  margin-bottom: 0;
}
.layout-content .con-list .text_item .titleBox {
  flex: 1;
  margin-left: 18px;
  color: #666666;
}
.layout-content .con-list .text_item .titleBox {
  position: relative;
  z-index: 5;
}
.layout-content .con-list .text_item .tag-logo {
  width: 100px;
  height: 60px;
  position: relative;
  z-index: 5;
}
.layout-content .con-list .text_item .tag-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.layout-content .con-list .text_item .time {
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #061f7e;
  height: 49px;
  border-right: 1px solid #061f7e;
  padding-right: 12px;
  position: relative;
  z-index: 5;
}
.layout-content .con-list .text_item .time .day {
  font-size: 28px;
}
.layout-content .con-list .text_item .time .year {
  font-size: 14px;
}
.layout-content .con-list .text_item .title {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  color: #333333;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.layout-content .con-list .text_item .title .media-tag {
  display: inline-block;
  color: #990000;
  position: relative;
  padding-right: 20px;
}
.layout-content .con-list .text_item .title .media-tag:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  height: 15px;
  width: 1px;
  background-color: #122b88;
  top: 5px;
}
.layout-content .con-list .text_item .source {
  color: #707070;
  font-size: 14px;
  margin-top: 0px;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .con-list .text_item .describe {
  font-size: 16px;
  margin-top: 15px;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .con-list .text_item.item-hover.active .title,
.layout-content .con-list .text_item.item-hover:hover .title,
.layout-content .con-list .text_item.item-hover.active .source,
.layout-content .con-list .text_item.item-hover:hover .source,
.layout-content .con-list .text_item.item-hover.active .time,
.layout-content .con-list .text_item.item-hover:hover .time,
.layout-content .con-list .text_item.item-hover.active .describe,
.layout-content .con-list .text_item.item-hover:hover .describe {
  color: white;
}
.layout-content .con-list .text_item.item-hover.active .title,
.layout-content .con-list .text_item.item-hover:hover .title {
  font-weight: bold;
}
.layout-content .con-list .text_item.item-hover.active .time,
.layout-content .con-list .text_item.item-hover:hover .time {
  border-right-color: white;
}
.layout-content .con-friend-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 44px;
  padding-bottom: 14px;
  margin-bottom: 45px;
  border-bottom: 2px solid #122b88;
}
.layout-content .con-friend-link a {
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #122b88;
  margin-right: 25px;
}
.layout-content .con-friend-link a .iconfont {
  margin-right: 15px;
}
.layout-content .con-friend-link a:last-child {
  margin-right: 0;
}
.layout-content .con-friend-link a:hover {
  color: #c11923;
}
.layout-content .content-box1 {
  padding: 60px 0;
}
.layout-content .content-box1.news-bg-box {
  position: relative;
}
.layout-content .content-box1.news-bg-box .bg-left {
  position: absolute;
  left: 2%;
  width: 230px;
  height: 100%;
  background: url("../image/new-bg-left.png") no-repeat;
  background-size: 100%;
  height: 544px;
}
.layout-content .content-box1.news-bg-box .bg-right {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 230px;
  height: 100%;
  background: url("../image/new-bg-right.png") no-repeat;
  background-size: 100%;
  background-position-y: bottom;
  height: 544px;
}
.layout-content .content-box1 .news-box #news {
  width: 925px;
  height: 525px;
  position: relative;
  overflow: hidden;
}
.layout-content .content-box1 .news-box #news .new-img {
  width: 100%;
  height: 100%;
}
.layout-content .content-box1 .news-box #news .new-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}
.layout-content .content-box1 .news-box #news .new-ti {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: white;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 19px;
}
.layout-content .content-box1 .news-box #news .new-ti span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .content-box1 .news-box #news .new-img:hover {
  cursor: pointer;
}
.layout-content .content-box1 .news-box #news .new-img:hover img {
  transform: scale(1.1);
}
.layout-content .content-box1 .notice-box {
  flex: 1;
  padding-left: 38px;
}
.layout-content .content-box1 .notice-box .nav-header .title-box .title {
  transition: all 0.2s ease;
}
.layout-content .content-box1 .notice-box .nav-header .title-box .title.active {
  background: #f0f7ff;
  color: #04429b;
  padding-left: 10px;
}
.layout-content .content-box1 .news-synthesize .con-list .text_item .title,
.layout-content .content-box1 .news-media .con-list .text_item .title {
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .content-box1 .news-media {
  margin-left: 38px;
}
.layout-content .content-box2 {
  background-image: url("../image/content2-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 20px 0 110px 0;
  position: relative;
}
.layout-content .content-box2 .float-icon {
  position: absolute;
  width: 400px;
  left: 0;
  top: 0;
}
.layout-content .content-box2 .float-icon img {
  width: 100%;
}
.layout-content .content-box2 .con-header .line-box .block-line {
  background-color: #c11923;
}
.layout-content .content-box2 .dang-content > .flex-one {
  margin-left: 38px;
}
.layout-content .content-box2 .dang-content > .flex-one:first-child {
  margin-left: 0;
}
.layout-content .content-box2 .dang-content .con-list .text_item {
  margin-bottom: 17px;
  border: none;
}
.layout-content .content-box2 .dang-content .con-list .text_item .time {
  color: #c11923;
  border-right: none;
}
.layout-content .content-box2 .dang-content .con-list .text_item:hover {
  transform: scale(1.05);
}
.layout-content .content-box2 .dang-content .con-list .text_item:hover .title,
.layout-content .content-box2 .dang-content .con-list .text_item:hover .source {
  color: #c11923;
}
.layout-content .content-box2 .talents-list {
  display: flex;
  flex-direction: column;
}
.layout-content .content-box2 .talents-list a {
  display: flex;
  align-items: center;
  height: 91px;
  box-shadow: 0px 0px 8px rgba(133, 133, 133, 0.6);
  margin-bottom: 17px;
  padding: 0 33px ;
  transition: all 0.3s ease;
  background: url("../image/talents-line.png");
  background-size: 100% 100%;
  border: 1px solid white;
  box-sizing: border-box;
  font-size: 30px;
  font-weight: bold;
}
.layout-content .content-box2 .talents-list a img {
  width: 100%;
  display: block;
}
.layout-content .content-box2 .talents-list a .icon {
  width: 60px;
}
.layout-content .content-box2 .talents-list a .title {
  color: #c11923;
  text-shadow: 1px 5px 5px rgba(41, 41, 41, 0.4);
  margin: 0 auto;
}
.layout-content .content-box2 .talents-list a:nth-child(2) .title {
  color: #da1f2a;
}
.layout-content .content-box2 .talents-list a:nth-child(3) .title {
  color: #e81f2b;
}
.layout-content .content-box2 .talents-list a:nth-child(4) .title {
  color: #f92d39;
}
.layout-content .content-box2 .talents-list a:hover {
  transform: scale(1.05);
}
.layout-content .content-box3 {
  padding: 74px 0 170px 0;
  background-color: #dee7f3;
  background-image: url("../image/content3-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 110px;
  position: relative;
}
.layout-content .content-box3 .float-icon {
  position: absolute;
  right: 0;
  width: 470px;
  top: 0;
}
.layout-content .content-box3 .trach-box > .flex-one {
  margin-left: 16px;
}
.layout-content .content-box3 .trach-box > .flex-one img {
  width: 100%;
  height: 100%;
}
.layout-content .content-box3 .trach-box > .flex-one:first-child {
  margin-left: 0;
}
.layout-content .content-box3 .trach-box > .flex-one:hover {
  transition: all 0.3s ease !important;
  transform: scale(1.1);
}
.layout-content .content-box4 {
  padding: 52px 0 72px 0;
  background-image: url("../image/science-bg.png"), url("../image/content4-bg.png");
  background-repeat: no-repeat;
  background-size: 1900px, 100%;
  background-position: center 751px, center bottom;
}
.layout-content .content-box4 .pic-lunbo {
  width: 925px;
}
.layout-content .content-box4 .pic-lunbo #picLunbo,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo {
  height: 524px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box .pic,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box .pic {
  flex: 1;
  overflow: hidden;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box .pic img,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-out;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box .ti,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box .ti {
  padding: 12px 19px;
  font-size: 18px;
  color: white;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding-right: 200px;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box .ti span,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box .ti span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .piclunbo-box:hover img,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .piclunbo-box:hover img {
  transform: scale(1.1);
}
.layout-content .content-box4 .pic-lunbo #picLunbo .swiper-pagination,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .swiper-pagination {
  width: 100%;
  left: 0;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  padding-right: 15px;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .swiper-pagination .swiper-pagination-bullet,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border: 2px solid transparent;
  opacity: 1;
  margin: 0 8px;
}
.layout-content .content-box4 .pic-lunbo #picLunbo .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.layout-content .content-box4 .pic-lunbo #hzpicLunbo .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: white;
  background-color: #c11923;
}
.layout-content .content-box4 .row-list .con-list .text_item {
  margin-bottom: 17px;
  border: none;
}
.layout-content .content-box4 .row-list .con-list .text_item .time {
  border: none;
}
.layout-content .content-box4 .row-list.flex-one {
  margin-left: 38px;
}
.layout-content .content-box4 #noticetabs > .title {
  position: relative;
}
.layout-content .content-box4 #noticetabs > .title:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #04429b;
  transition: all 0.3s ease;
}
.layout-content .content-box4 #noticetabs > .title.active:after {
  width: 100%;
}
.layout-content .content-box4 .scienceDom {
  display: none;
}
.layout-content .content-box5 {
  background-color: #dee7f3;
  background-image: url("../image/wl-content-bg.png"), url("../image/content5-bg.png");
  background-size: 300px, 100%;
  background-repeat: no-repeat;
  background-position: left 80px, center bottom;
  position: relative;
  padding: 50px 0;
  padding-bottom: 0;
}
.layout-content .content-box5 .bg-left {
  position: absolute;
  left: 2%;
  width: 230px;
  background: url("../image/bowen-icon.png") no-repeat;
  background-size: 100%;
  height: 304px;
}
.layout-content .content-box5 .bg-right {
  position: absolute;
  right: 2%;
  top: 655px;
  width: 230px;
  background: url("../image/dali-icon.png") no-repeat;
  background-size: 100%;
  background-position-y: bottom;
  height: 304px;
}
.layout-content .content-box5 .con-list .text_item {
  border: none;
}
.layout-content .content-box5 .con-list .text_item .time {
  border-right: none;
}
.layout-content .content-box5 .oldboy-activity {
  width: 925px;
  margin-right: 38px;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo {
  width: 100%;
  height: 515px;
  overflow: hidden;
  position: relative;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .swiper-pagination {
  width: 100%;
  left: 0;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  padding-right: 15px;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border: 2px solid transparent;
  opacity: 1;
  margin: 0 8px;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: white;
  background-color: #c11923;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .lunbo-box {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .lunbo-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .lunbo-box .ti {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 13px 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 18px;
  padding-right: 150px;
}
.layout-content .content-box5 .oldboy-activity #oldboyLunbo .lunbo-box .ti span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-content .content-box5 .con-friend-link a {
  border-right: 2px solid #122b88;
  padding-right: 20px;
  line-height: 30px;
}
.layout-content .content-box5 .con-friend-link a:last-child {
  border-right: none;
  padding-right: 0;
}
.layout-content .content-box5 .tag-list {
  margin: 0 auto;
  width: 1920px;
  height: 655px;
  background: url("../image/wl-content-shape-bg.png");
  background-size: 100% 100%;
  position: relative;
  margin-top: 100px;
}
.layout-content .content-box5 .tag-list .tag {
  position: absolute;
  width: 7.91%;
  height: 26.72%;
}
.layout-content .content-box5 .tag-list .tag .box {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../image/six-shape-icon-bg.png") no-repeat;
  background-size: 100%;
  background-position: left top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.layout-content .content-box5 .tag-list .tag .box .num {
  font-size: 28px;
  color: #004784;
  text-align: center;
}
.layout-content .content-box5 .tag-list .tag .box .title {
  font-size: 16px;
  color: #0c0c0c;
  text-align: center;
}
.layout-content .content-box5 .tag-list .tag .box .iconfont {
  position: absolute;
  font-size: 90px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #9abbe9;
  opacity: 0.2;
}
.layout-content .content-box5 .tag-list .tag .box.active {
  background-position: left bottom;
}
.layout-content .content-box5 .tag-list .tag .box.active .num,
.layout-content .content-box5 .tag-list .tag .box.active .title,
.layout-content .content-box5 .tag-list .tag .box.active .iconfont {
  color: white;
}
.layout-content .content-box5 .tag-list .tag .box:hover {
  background-position: left bottom;
}
.layout-content .content-box5 .tag-list .tag .box:hover .num {
  color: white;
}
.layout-content .content-box5 .tag-list .tag .box:hover .title {
  color: white;
}
.layout-content .content-box5 .tag-list .tag.tag1 {
  left: 11.9%;
  top: 7.8%;
}
.layout-content .content-box5 .tag-list .tag.tag2 {
  left: 31.9%;
  top: -5.2%;
}
.layout-content .content-box5 .tag-list .tag.tag3 {
  left: 48.3%;
  top: -12.2%;
}
.layout-content .content-box5 .tag-list .tag.tag4 {
  left: 61.9%;
  top: 3.6%;
}
.layout-content .content-box5 .tag-list .tag.tag5 {
  left: 18.3%;
  top: 54.7%;
}
.layout-content .content-box5 .tag-list .tag.tag6 {
  left: 43%;
  top: 45%;
}
.layout-content .content-box5 .tag-list .tag.tag7 {
  left: 33.5%;
  top: 30.6%;
}
.layout-content .content-box5 .tag-list .tag.tag8 {
  left: 57.75%;
  top: 35.5%;
}
.layout-content .content-box5 .tag-list .tag.tag9 {
  left: 66%;
  top: 35.5%;
}
.layout-content .content-box5 .tag-list .tag.tag10 {
  left: 80.75%;
  top: 3.5%;
}
.layout-content .content-box5 .tag-list .tag.tag11 {
  left: 7.75%;
  top: 28.5%;
}
.layout-content .content-box5 .tag-list .tag.tag12 {
  left: 79.65%;
  top: 52.4%;
}
.layout-content .content-box7 {
  background-image: url("../image/content7-bg.png");
  background-size: 100%;
  background-position: center bottom;
  padding: 50px 0 100px 0;
  background-repeat: no-repeat;
}
.layout-content .content-box7 .media-list {
  background: rgba(255, 255, 255, 0.5);
  padding: 90px 20px;
  box-sizing: border-box;
}
.layout-content .content-box7 .media-list a {
  color: #666666;
  display: block;
}
.layout-content .content-box7 .media-list a:hover {
  color: #1250a7;
}
.layout-content .content-box7 .media-list > .flex-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.layout-content .content-box7 .media-list > .flex-one .icon {
  width: 80px;
  height: 80px;
}
.layout-content .content-box7 .media-list > .flex-one .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.layout-content .content-box7 .media-list > .flex-one .ewm-box {
  position: absolute;
  width: 154px;
  box-shadow: inset 0 0 10px #b6ccef;
  padding: 10px;
  background: white;
  border-radius: 6px;
  margin-top: 15px;
  box-sizing: border-box;
  color: #122b88;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  top: 0px;
  display: none;
}
.layout-content .content-box7 .media-list > .flex-one .ewm-box img {
  width: 100%;
}
.layout-content .content-box7 .media-list > .flex-one .ewm-box:before {
  content: "";
  position: absolute;
  top: -10px;
  transform: translateX(55px);
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  /* 左侧边框透明 */
  border-right: 10px solid transparent;
  /* 右侧边框透明 */
  border-bottom: 10px solid #b6ccef;
  /* 底部边框颜色 */
}
.layout-content .content-box7 .media-list > .flex-one:hover .ewm-box {
  display: block;
  animation: move-any 0.66s forwards;
}
.layout-content .content-box7 .special-list {
  width: 100%;
  overflow: hidden;
}
.layout-content .content-box7 .special-list .slide-effect {
  width: 100%;
}
.layout-content .content-box7 .special-list .slide-effect a {
  display: block;
  overflow: hidden;
  position: relative;
}
.layout-content .content-box7 .special-list .slide-effect a,
.layout-content .content-box7 .special-list .slide-effect img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.layout-content .content-box7 .special-list .slide-effect a:before {
  position: absolute;
  transition: 1s;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: 0.25;
  pointer-events: none;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;
}
.layout-content .content-box7 .special-list .slide-effect a:hover img {
  transform: scale(1.1);
}
.layout-content .content-box7 .special-list .slide-effect a:hover:before {
  animation: shine 0.8s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*  底部 */
footer {
  color: white;
  background: #04429b url("../image/footer_bg.jpg");
  background-size: cover;
}
footer .info-box {
  padding-top: 30px;
}
footer .info-box > div {
  flex: 1;
}
footer .info-box p {
  font-size: 14px;
  line-height: 28px;
}
footer .touch {
  text-align: center;
}
footer .records {
  justify-content: center;
}
footer .records .ploc {
  width: 56px;
  height: 74px;
  margin-right: 10px;
}
footer .copyright {
  font-size: 14px;
  padding: 20px 0;
  text-align: center;
}
/* 列表 */
@media (max-width: 1800px) {
  .containerNav {
    width: 100% !important;
  }
  .containerNav .pcNav > li > a {
    font-size: 18px;
  }
}
@media (max-width: 1650px) {
  .navigation .logo {
    width: 350px !important;
  }
  .layout-content .content-box5 .tag-list .tag .box .iconfont {
    font-size: 50px;
  }
  .content {
    margin-top: 130px !important;
  }
}
/* 分页样式 */
.pagination {
  width: 100%;
  text-align: center;
  padding: 20px;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul span,
.pg-1 .total {
  display: inline-block;
  height: 24px;
  padding: 0 15px;
  color: #fff;
  border: 1px solid #122b88;
  background-color: #122b88;
}
.pagination ul li {
  list-style: none;
}
.pagination ul a,
.pg-1 a,
.pg-1 .current {
  display: inline-block;
  margin: 0 5px 8px;
  padding: 2px 7px;
  color: #7e7e7e;
  border: 1px solid #dbdbdb;
}
.pagination ul li.active a,
.pg-1 .current {
  color: #fff;
  border: 1px solid #122b88;
  background-color: #122b88;
}
.pagination ul li a:hover,
.pg-1 a：hover {
  color: #122b88;
}
/* 搜索弹窗 */
.shade {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.2s ease;
  display: none;
}
.shade.active {
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  display: block;
}
.search-dialog {
  margin-right: 20px;
}
.search-dialog .search-box {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 5px 5px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.search-dialog .search-box .input {
  border: none;
  outline: none;
  flex: 1;
  background: none;
  font-size: 14px;
  color: #666666;
  padding-left: 5px;
}
.search-dialog .search-box .input::placeholder {
  color: #9c9c9c;
}
.search-dialog .search-box .btn {
  width: 30px;
  height: 100%;
  border: none;
  padding: 5px;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
}
.search-dialog .search-box .btn .iconfont {
  font-size: 16px;
  color: #8b8b8b;
}
.search-dialog .search-box .btn:hover {
  cursor: pointer;
}
/* 内容页 */
.content {
  background-color: white;
  margin-top: 150px;
  background-image: url(../image/content-page-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left calc(100% - 163px);
}
.content .content-banner {
  max-height: 500px;
  overflow: hidden;
}
.content .content-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .list-layout {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  min-height: 900px;
}
.content .list-layout .bg-left {
  position: absolute;
  left: 0;
  top: 500px;
  width: 130px;
  background: url("../image/new-bg-left.png") no-repeat;
  background-size: 100%;
  height: 370px;
}
.content .list-layout .bg-right {
  position: absolute;
  right: -170px;
  top: 0;
  width: 130px;
  background: url("../image/new-bg-right.png") no-repeat;
  background-size: 100%;
  background-position-y: bottom;
  height: 370px;
}
.content .list-layout .pcleftNav {
  position: sticky;
  margin-right: 20px;
  width: 230px;
  position: relative;
}
.content .list-layout .pcleftNav .top {
  height: 140px;
  position: absolute;
  width: 100%;
  top: -140px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../image/nav-top-bg.png");
  background-size: 100% 100%;
}
.content .list-layout .pcleftNav .top > p {
  font-size: 28px;
  width: 120px;
  letter-spacing: 18px;
  line-height: 42px;
}
.content .list-layout .pcleftNav .top .menu_btn {
  display: none;
  width: 20px;
  height: 20px;
  float: right;
  margin-top: -28px;
}
.content .list-layout .pcleftNav .top .menu_btn .line {
  height: 2px;
  background: #333;
  margin-top: 5px;
}
.content .list-layout .pcleftNav .top .menu_btn .line:first-child {
  margin-top: 0;
}
.content .list-layout .pcleftNav > ul > li:last-child > a {
  border-bottom: 0;
}
.content .list-layout .pcleftNav ul {
  background: #f3f3f3;
}
.content .list-layout .pcleftNav ul li > ul {
  margin-left: 25px;
}
.content .list-layout .pcleftNav ul li a {
  display: block;
  text-align: left;
  padding-left: 25px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e2e2;
  line-height: 30px;
  font-size: 18px;
  color: #7a7a7a;
  font-weight: 600;
}
.content .list-layout .pcleftNav ul li a:hover {
  color: #122b88 !important;
  background: white;
}
.content .list-layout .pcleftNav ul li.active > a {
  font-weight: bold;
  color: #122b88 !important;
  background: white;
  border-left: 3px solid #c11923;
}
.content .list-layout .right-content {
  background: rgba(255, 255, 255, 0.4);
  min-height: 400px;
  flex: 1;
  border-radius: 12px;
  padding: 0 20px;
}
.content .list-layout .right-content .top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c5c5c5;
  margin: 10px 0;
}
.content .list-layout .right-content .top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #585859;
  border-bottom: 2px solid #d54248;
  margin: 0;
  padding: 20px 0;
  margin-bottom: -1px;
}
.content .list-layout .right-content .top .link {
  flex: 1;
  text-align: right;
  margin-right: 20px;
  font-size: 16px;
  color: #585859;
}
.content .list-layout .right-content .top .link a {
  color: #585859;
}
.content .list-layout .right-content .top .link a:hover {
  color: #122b88;
}
.content .list-layout .right-content .artice {
  padding: 40px 120px;
  min-height: 600px;
  text-align: justify;
}
.content .list-layout .right-content .artice .title {
  font-size: 24px;
  text-align: center;
  color: #122b88;
}
.content .list-layout .right-content .artice .abs {
  font-size: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px 0;
  color: #888888;
}
.content .list-layout .right-content .artice .abs span {
  margin-right: 25px;
}
.content .list-layout .right-content .artice .abs span:last-child {
  margin-right: 0;
}
.content .list-layout .right-content .artice .contentAtice table {
  width: 100%;
}
.content .list-layout .right-content .artice .contentAtice img {
  max-width: 100%;
  height: auto !important;
}
.content .list-layout .right-content .list {
  padding-top: 0;
}
.content .list-layout .right-content .list li a {
  display: flex;
  padding: 25px 0px;
  border-bottom: 1px solid #d6d6d6;
}
.content .list-layout .right-content .list li a span {
  margin-right: 15px;
  transition: all 0.36s ease;
}
.content .list-layout .right-content .list li a .imgBox {
  overflow: hidden;
  width: 160px;
  margin-right: 15px;
  height: 100px;
  position: relative;
}
.content .list-layout .right-content .list li a .imgBox img {
  width: 100%;
  height: 100%;
}
.content .list-layout .right-content .list li a .imgBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 87, 15, 0.1);
  left: 0;
  top: 0;
  transition: all 0.36s ease;
  opacity: 0;
}
.content .list-layout .right-content .list li a .imgBox::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  border: 1px solid white;
  transition: all 0.36s ease;
  transform: scale(1.3);
  top: 5%;
  left: 5%;
}
.content .list-layout .right-content .list li a .textBox {
  flex: 1;
}
.content .list-layout .right-content .list li a .textBox .title {
  font-size: 20px;
  color: #737373;
  margin-bottom: 20px;
  margin-top: 5px;
  height: 30px;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.content .list-layout .right-content .list li a .textBox .des {
  color: #737373;
  font-size: 14px;
  overflow: hidden;
  height: 40px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 20px;
}
.content .list-layout .right-content .list li a .timeBox {
  width: 100px;
  text-align: right;
  color: #797979;
}
.content .list-layout .right-content .list li a .timeBox .time {
  font-family: fantasy;
  font-size: 24px;
}
.content .list-layout .right-content .list li a .timeBox .iconfont {
  color: #cfcfcf;
  font-size: 30px;
  margin-top: 30px;
}
.content .list-layout .right-content .list li a:hover .imgBox::before {
  transform: scale(1);
}
.content .list-layout .right-content .list li a:hover .imgBox::after {
  opacity: 1;
}
.content .list-layout .right-content .list li a:hover .title {
  color: #122b88;
}
.content .list-layout .right-content .list li a:hover .timeBox {
  color: #122b88;
}
.content .list-layout .right-content .list li a:hover .timeBox .iconfont {
  color: #122b88;
}
/* 机构设置 */
.jgszList {
  background: rgba(255, 255, 255, 0.3);
  padding: 0 20px;
}
.jgszList .item {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  margin-top: 50px;
  padding-top: 60px;
  padding-right: 0;
}
.jgszList .item h4 {
  font-size: 20px;
  color: #122b88;
  font-weight: bold;
  background: white;
  position: absolute;
  top: -42px;
  padding: 0 20px;
}
.jgszList .item .itemList {
  display: flex;
  flex-wrap: wrap;
}
.jgszList .item .itemList .disabled {
  background: none;
  color: #6e6e6e;
}
.jgszList .item .itemList .disabled:hover {
  background: none;
  color: #6e6e6e;
  cursor: default;
}
.jgszList .item .itemList a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 80px;
  background: #f5f9ff;
  padding: 0 15px;
  text-align: center;
  width: calc(25% - 20px);
  margin-bottom: 20px;
  margin-right: 20px;
  font-size: 15px;
  color: #3b70bb;
  box-sizing: border-box;
  border: 1px solid #e2e9ff;
  box-shadow: 1px 2px 4px #d6deff;
  border-radius: 4px;
}
.jgszList .item .itemList a .iconfont {
  font-size: 30px;
}
.jgszList .item .itemList a .title {
  flex: 1;
  text-align: center;
  font-weight: 600;
}
.jgszList .item .itemList a:hover {
  cursor: pointer;
  background: #e15662;
  color: white;
}
/* 现任领导 */
.leader-box {
  padding: 100px 0;
  width: 100%;
  color: #333333;
}
.leader-box .title {
  font-size: 32px;
  text-align: center;
}
.leader-box .part-content {
  margin-top: 45px;
}
.leader-box .part-content .part-box {
  display: flex;
  margin-bottom: 20px;
}
.leader-box .part-content .part-box:last-child {
  margin-bottom: 0;
}
.leader-box .part-content .part-box .part {
  flex: 1;
  display: flex;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background: white url("../image/logo-blue.jpg") no-repeat;
  background-size: 140px 140px;
  background-position: calc(100% + 60px) calc(100% + 60px);
}
.leader-box .part-content .part-box .part.sc-part {
  margin-left: 20px;
}
.leader-box .part-content .part-box .part .line {
  width: 60px;
  background: url("../image/part-line-bg.jpg");
  background-size: cover;
  background-position: center bottom;
}
.leader-box .part-content .part-box .part .inner {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.leader-box .part-content .part-box .part .inner .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.leader-box .part-content .part-box .part .inner .item:last-child {
  border-bottom: none;
}
.leader-box .part-content .part-box .part .inner .item .label {
  font-size: 18px;
  border-right: 1px solid #ddd;
  padding-right: 25px;
  width: 210px;
  text-align: right;
  margin: 10px 0;
}
.leader-box .part-content .part-box .part .inner .item .label.w-150 {
  width: 150px;
}
.leader-box .part-content .part-box .part .inner .item .label .t2 {
  font-size: 13px;
}
.leader-box .part-content .part-box .part .inner .item .value {
  font-size: 16px;
  flex: 1;
}
.leader-box .part-content .part-box .part .inner .item .value a {
  display: inline-block;
  color: #333333;
  padding: 10px 20px;
}
.leader-box .part-content .part-box .part .inner .item .value a:hover {
  color: #1250a7;
}
/* 学校标识 */
.school-logo {
  padding-bottom: 20px;
}
.school-logo .school-name {
  display: block;
  width: 80%;
  max-width: 540px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.school-logo .title-item-box .ti {
  color: #1e75db;
  font-weight: 600;
  font-size: 15px;
  text-indent: 2em;
  margin-bottom: 20px;
}
.school-logo .title-item-box .school-icon {
  width: 80%;
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.school-logo .title-item-box p {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  text-indent: 2em;
  text-align: justify;
  margin-bottom: 20px;
}
/* 折叠面板 */
.pancel-page {
  padding: 20px;
}
.pancel-page .pancel-top-title {
  font-weight: 600;
  font-size: 19px;
  color: #1e75db;
  text-align: center;
  margin: 25px 0;
}
.pancel-page .tag-panel .tag-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  background: #f1f6ff;
  font-size: 17px;
  color: #666666;
  border-left: 8px solid #1e75db;
  border-radius: 4px;
  padding-right: 10px;
  box-shadow: 1px 2px 4px #dfdfdf;
}
.pancel-page .tag-panel .tag-title .title {
  padding-left: 15px;
  font-weight: bold;
}
.pancel-page .tag-panel .tag-title .iconfont {
  font-size: 22px;
  transition: all 0.3s ease;
  color: #1e75db;
}
.pancel-page .tag-panel .panel-content {
  margin: 20px 0;
  height: 0px;
  color: #666666;
  text-align: justify !important;
  font-size: 15px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pancel-page .tag-panel .panel-content p {
  text-indent: 2em;
  line-height: 180%;
  color: #666;
}
.pancel-page .tag-panel .panel-content h5 {
  font-size: 18px;
  color: #1e75db;
  margin: 20px 0;
  text-indent: 2em;
}
.pancel-page .tag-panel .panel-content .liRen {
  width: 100%;
  border-color: #ccc;
  background-color: #fff;
  border-top: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
}
.pancel-page .tag-panel .panel-content .liRen td,
.pancel-page .tag-panel .panel-content .liRen th {
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  padding: 10px;
}
.pancel-page .tag-panel.active .tag-title .iconfont {
  transform: rotate(90deg);
}
/* 学术期刊 */
.qikan-panel {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.qikan-panel .qikan-panel-tag {
  display: inline-block;
  width: 360px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.qikan-panel .qikan-panel-tag h4,
.qikan-panel .qikan-panel-tag p {
  margin: 0;
  padding: 0;
}
.qikan-panel .qikan-panel-tag .tag-top {
  padding: 10px 15px;
  color: #fff;
  background-color: #319ade;
  height: 100px;
  transition: all 0.2s ease;
}
.qikan-panel .qikan-panel-tag .tag-top .iconfont {
  font-size: 90px;
}
.qikan-panel .qikan-panel-tag .tag-top h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.qikan-panel .qikan-panel-tag .tag-top p {
  font-size: 15px;
}
.qikan-panel .qikan-panel-tag .tag-bottom {
  color: #646464;
  padding: 10px;
  font-size: 13px;
  background: #f7f7f7;
  min-height: 100px;
  transition: all 0.2s ease;
}
.qikan-panel .qikan-panel-tag .tag-bottom h4 {
  font-size: 24px;
  text-align: right;
  margin-bottom: 10px;
}
.qikan-panel .qikan-panel-tag:hover .tag-top {
  background: #f7f7f7;
  color: #646464;
}
.qikan-panel .qikan-panel-tag:hover .tag-bottom {
  color: #fff;
  background-color: #319ade;
}
/* 领导详情 */
.leader-detail {
  padding: 20px;
}
.leader-detail .pic {
  float: left;
  width: 150px;
}
.leader-detail .pic img {
  width: 100%;
}
.leader-detail .text {
  padding: 0px 50px 0 200px;
}
@media (max-width: 1500px) {
  #banner {
    height: auto;
  }
  .down-page {
    display: none;
  }
}
@media (max-width: 1430px) {
  .container {
    width: 1200px;
  }
  .font36 {
    font-size: 18px !important;
  }
  .layout-content .con-friend-link a {
    font-size: 18px;
  }
  .layout-content .con-header .icon-ti {
    width: 220px;
  }
  .layout-content .con-header .line-box .triangle {
    width: 35px;
    height: 18px;
  }
  .layout-content .con-header .line-box .block-line {
    width: 290px;
  }
  .layout-content .content-box1 .news-box #news {
    height: 485px;
    width: 730px;
  }
  .layout-content .content-box1 .notice-box {
    padding-left: 20px;
  }
  .layout-content .content-box1 .news-media {
    margin-left: 20px;
  }
  .layout-content .nav-header {
    margin-bottom: 15px;
  }
  .layout-content .nav-header .title-box .title {
    font-size: 18px !important;
  }
  .layout-content .nav-header .title-box .title .iconfont,
  .layout-content .nav-header .title-box .title .border-blue {
    font-size: 20px !important;
  }
  .layout-content .con-list .text_item {
    margin-bottom: 10px;
    padding: 10px;
  }
  .layout-content .content-box1 {
    padding: 30px 0;
  }
  .layout-content .content-box2 .talents-list a {
    height: 87px;
    font-size: 20px;
  }
  .layout-content .content-box2 .talents-list a .icon {
    width: 40px;
    height: 40px;
  }
  .layout-content .content-box2 .dang-content > .flex-one {
    margin-left: 20px;
  }
  .layout-content .content-box4 .row-list.flex-one {
    margin-left: 20px;
  }
  .layout-content .content-box4 .pic-lunbo {
    width: 760px;
  }
  .layout-content .content-box4 .pic-lunbo #picLunbo,
  .layout-content .content-box4 .pic-lunbo #hzpicLunbo {
    height: 503px;
  }
  .layout-content .content-box5 .con-list .text_item {
    margin-bottom: 6px;
  }
  .layout-content .content-box5 .oldboy-activity {
    width: 698px;
    margin-right: 20px;
  }
  .layout-content .content-box5 .oldboy-activity #oldboyLunbo {
    height: 460px;
  }
  .layout-content .content-box7 .special-list a {
    margin-right: 20px;
  }
  .layout-content .content-box7 .media-list a .ewm-box:before {
    transform: translateX(40px);
  }
  .layout-content .content-box7 .media-list a .ewm-box {
    width: 120px;
  }
  .layout-content .content-box7 .media-list a .icon {
    width: 50px;
    height: 50px;
  }
  .jgszList .item .itemList a {
    width: calc(33% - 20px);
  }
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
  .leader-detail .pic {
    float: left;
    width: 300px;
  }
  .leader-detail .text {
    padding-left: 350px;
  }
  .special-list {
    flex-wrap: wrap;
    width: 100%;
  }
  .special-list .item {
    width: calc(50% - 10px) !important;
    margin-right: 20px !important;
  }
  .special-list .item .ti {
    font-size: 14px !important;
    margin-top: 10px !important;
    height: 16px !important;
  }
  .special-list .item:nth-child(2n) {
    margin-right: 0 !important;
  }
  .layout-content .nav-header .more .line {
    display: none;
  }
  .layout-content .nav-header .title-box .describe {
    margin-top: 10px;
    margin-left: 0;
  }
  .layout-content .content-box1 .news-box #news {
    width: 100%;
    height: auto;
  }
  .layout-content .news-box .list-row {
    flex-direction: column;
  }
  .layout-content .news-box .list-row .notice-box {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .layout-content .news-box .list-row .text_item.active {
    background: #04429b;
  }
  .layout-content .content-box4 .row-list {
    flex-direction: column;
  }
  .layout-content .content-box4 .row-list.flex-one {
    margin-left: 0 !important;
  }
  .layout-content .content-box4 .pic-lunbo {
    width: 100%;
  }
  .layout-content .content-box4 .pic-lunbo #picLunbo,
  .layout-content .content-box4 .pic-lunbo #hzpicLunbo {
    height: 100%;
  }
}
@media (max-width: 1050px) {
  .layout-content .con-friend-link a {
    font-size: 16px;
  }
  .layout-content .content-box5 .con-list .text_item {
    margin-bottom: 10px;
  }
  .layout-content .content-box5 .tag-list {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    background: none;
    height: auto !important;
    justify-content: space-between;
    margin-top: 0;
  }
  .layout-content .content-box5 .tag-list .tag {
    position: static;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 80px !important;
    height: 90px !important;
  }
  .layout-content .content-box5 .tag-list .tag .box {
    background-position: left bottom;
  }
  .layout-content .content-box5 .tag-list .tag .box .num {
    color: white;
    font-size: 16px !important;
  }
  .layout-content .content-box5 .tag-list .tag .box .title {
    color: white;
    font-size: 12px !important;
  }
  .layout-content .content-box5 .tag-list .tag .box .iconfont {
    font-size: 30px;
  }
  .layout-content .content-box7 .media-list {
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
  }
  .layout-content .content-box7 .media-list a {
    padding-top: 10px;
    border: 1px solid #f5f5f5;
  }
  .layout-content .content-box7 .special-list a {
    flex: auto;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .layout-content .content-box7 .special-list a img {
    max-height: none;
  }
  .leader-detail .pic {
    width: 30vw;
    margin: 0 30px 20px 0;
  }
  .leader-detail .text {
    padding: 0;
  }
  .line-feed {
    flex-direction: column;
  }
  .line-feed audio {
    margin-bottom: 20px;
    margin-left: 20px;
  }
  footer .copyright {
    font-size: 12px;
  }
  footer .info-box {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .info-box .records {
    margin-top: 20px;
  }
  .layout-content .nav-header .more .line {
    display: none;
  }
  .layout-content .nav-header .title-box .title {
    font-size: 16px;
  }
  .layout-content .nav-header .title-box .title .iconfont {
    font-size: 20px !important;
  }
  .layout-content .con-header {
    margin-bottom: 0;
  }
  .layout-content .con-header .icon-ti {
    width: 140px;
  }
  .layout-content .con-header .line-box .block-line {
    width: 160px;
    height: 4px;
  }
  .layout-content .con-list .text_item .describe {
    font-size: 12px;
  }
  .layout-content .con-list .text_item .title {
    font-size: 14px;
  }
  .layout-content .container {
    flex-direction: column;
  }
  .layout-content .container .oldboy-activity {
    width: 100%;
    margin-right: 0;
  }
  .layout-content .container .row-list {
    flex-direction: column;
  }
  .layout-content .container .row-list .flex-one {
    margin-left: 0;
    padding-left: 0;
  }
  .layout-content .container .row-list .pic-lunbo {
    width: 100%;
  }
  .layout-content .container .row-list .pic-lunbo #hzpicLunbo,
  .layout-content .container .row-list .pic-lunbo #picLunbo {
    height: auto !important;
  }
  .layout-content .content-box5 .oldboy-activity #oldboyLunbo {
    height: auto;
  }
  .content {
    margin-top: 80px;
  }
  .content header {
    border-color: transparent;
  }
  .content .list-layout {
    display: flex;
    flex-direction: column;
  }
  .content .list-layout .pcleftNav {
    width: 100%;
    margin-right: 0;
  }
  .content .list-layout .pcleftNav ul li a {
    font-size: 14px;
  }
  .content .list-layout .pcleftNav .top {
    display: block;
    height: 50px;
    top: -50px;
    background: rgba(37, 72, 195, 0.7);
  }
  .content .list-layout .pcleftNav .top p {
    font-size: 18px;
    width: auto;
    line-height: 50px;
    font-weight: bold;
  }
  .content .list-layout .pcleftNav .top .menu_btn {
    display: block;
  }
  .content .list-layout .right-content {
    margin-top: 0;
  }
  .content .list-layout .right-content .artice {
    padding: 20px;
  }
  .content .list-layout .right-content .artice .title {
    font-size: 16px;
    text-align: center;
  }
  .content .list-layout .right-content .top {
    padding: 0;
    display: block;
    padding: 15px 0;
  }
  .content .list-layout .right-content .top h4 {
    margin: 10px;
  }
  .content .list-layout .right-content .top .link {
    text-align: left;
    padding-left: 15px;
  }
  .content .list-layout .right-content .list {
    margin-top: 0;
  }
  .content .list-layout .right-content .list li a {
    flex-wrap: wrap;
  }
  .content .list-layout .right-content .list li a .imgBox {
    height: auto;
    margin-right: 0;
  }
  .content .list-layout .right-content .list li a .textBox .title {
    font-size: 14px;
    margin-bottom: 10px;
    height: 38px;
  }
  .content .list-layout .right-content .list li a .textBox .des {
    font-size: 12px;
    height: 42px;
  }
  .content .list-layout .right-content .list li a .timeBox .iconfont {
    display: none;
  }
  .content .list-layout .right-content .list li a > div {
    flex: 150% 1 1;
  }
  .jgszList .item {
    padding: 30px 10px;
    padding-bottom: 0;
  }
  .jgszList .item .itemList {
    justify-content: space-between;
  }
  .jgszList .item .itemList a {
    font-size: 12px;
    width: 48%;
    height: 60px;
    padding: 0 5px;
    margin-right: 10px;
    margin-right: 0;
  }
  .leader-box {
    padding: 50px 0;
    padding-top: 20px;
  }
  .leader-box .title {
    font-size: 18px;
  }
  .leader-box .part-content .part-box {
    flex-direction: column;
  }
  .leader-box .part-content .part-box .part.sc-part {
    margin-left: 0;
    margin-top: 20px;
  }
  .leader-box .part-content .part-box .part .inner {
    padding: 15px;
  }
  .leader-box .part-content .part-box .part .inner .item .label {
    font-size: 16px;
    width: 100px;
  }
  .leader-box .part-content .part-box .part .inner .item .label .t2 {
    font-size: 12px;
  }
  .leader-box .part-content .part-box .part .inner .item .value {
    font-size: 14px;
  }
  .layout-content .nav-header .title-box .describe {
    display: none;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .qikan-panel .qikan-panel-tag {
    width: 100%;
  }
  .leader-box .part-content .part-box .part.sc-part {
    margin-left: 0;
    margin-top: 20px;
  }
  .leader-box .part-content .part-box .part .inner .item .label {
    width: 140px;
  }
  .list-layout {
    padding: 0 10px;
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  animation-duration: 1s;
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes icon-path-animation {
  0% {
    stroke-dasharray: 4917;
    stroke-dashoffset: 4917;
    fill: transparent;
  }
  70% {
    stroke-dasharray: 3917;
    stroke-dashoffset: 0;
    fill: #fff;
  }
  100% {
    stroke-dasharray: 10;
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@keyframes move-any {
  0% {
    opacity: 0;
    top: 0;
  }
  100% {
    opacity: 1;
    top: 90%;
  }
}
/*# sourceMappingURL=home.css.map */